home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / a_to_d / ansmach / ansmach2.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-09-15  |  676 b   |  39 lines

  1. unit Ansmach2;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TAboutBox = class(TForm)
  10.     Panel1: TPanel;
  11.     Button1: TButton;
  12.     Label2: TLabel;
  13.     Label3: TLabel;
  14.     Label5: TLabel;
  15.     Label4: TLabel;
  16.     Label6: TLabel;
  17.     procedure Button1Click(Sender: TObject);
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   AboutBox: TAboutBox;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. {==============================================================================}
  32. procedure TAboutBox.Button1Click(Sender: TObject);
  33. begin
  34.   Close;
  35. end;
  36.  
  37. end.
  38.  
  39.